home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / misc / x10-amh-.000 / x10-amh- / x10-amh-v1.04 / sample.x10 < prev    next >
Text File  |  1996-02-13  |  2KB  |  43 lines

  1. # ==========================================================================
  2. # Default values for keywords:
  3. # ==========================================================================
  4. #
  5. #  devmap   : 1
  6. #  daymap   : 1,2,3,4,5,6,7
  7. #  housecode: a
  8. #  mode     : normal
  9. #  minute   : 0
  10. #  hour     : 0
  11. #  function : on
  12. #
  13. # ==========================================================================
  14. # Allowable values for keywords:
  15. # ==========================================================================
  16. #
  17. #  devmap   : Comma separated list of numbers in range of 1..16
  18. #  daymap   : Comma separated list of numbers in range of 1..7 (1==monday)
  19. #  housecode: a-p
  20. #  mode     : normal, security, today, tomorrow, clear
  21. #  minute   : 0-60
  22. #  hour     : 0-23
  23. #  function : on, off, dim
  24. # ==========================================================================
  25.  
  26. event {
  27.   devmap    2             # Comma separated list of devices to affect
  28.   daymap    1,2,3,4,5,6,7 # ( 1 == Monday ) ... ( 7 == Sunday )
  29.   housecode a             # Which housecode the devices are on
  30.   mode      normal        # One of ( normal, security, today, tomorrow, clear )
  31.   minute    39            # Minute of event
  32.   hour      23            # Hour of event
  33.   function  dim           # One of         ( on, off, dim )
  34.   dimlevel  5             # Range of 0..15 ( 0 being the brightest )
  35. }
  36.  
  37. event {
  38.   devmap    1,3,5         # May address multiple devices at once
  39.   daymap    1,2,3,4,5     # Maybe just the weekdays eh?
  40.   hour      5             # At 5 am (Use 17 for 5pm)
  41.   function  off           # turn off
  42. }
  43.